HdcpSession.GetEffectiveProtection 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回 HdcpSession 實例的有效保護。
public:
virtual IReference<HdcpProtection> ^ GetEffectiveProtection() = GetEffectiveProtection;
IReference<HdcpProtection> GetEffectiveProtection();
public System.Nullable<HdcpProtection> GetEffectiveProtection();
function getEffectiveProtection()
Public Function GetEffectiveProtection () As Nullable(Of HdcpProtection)
傳回
HdcpSession實例目前具有的保護層級。
備註
若要取得這個方法的輸出,請將它指派給 HdcpProtection類型的變數?:
HdcpProtection? protection = hdcpSession.GetEffectiveProtection();
然後,若要取得列舉的實際值,請使用 protection.Value
。