VrSharp.SvrTexture.SvrTexture.Is C# (CSharp) Method

Is() public static method

Determines if this is a SVR texture.
public static Is ( Stream source ) : bool
source Stream The stream to read from. The stream position is not changed.
return bool
        public static bool Is(Stream source)
        {
            return Is(source, (int)(source.Length - source.Position));
        }

Same methods

SvrTexture::Is ( Stream source, int length ) : bool
SvrTexture::Is ( byte source ) : bool
SvrTexture::Is ( byte source, int offset, int length ) : bool
SvrTexture::Is ( string file ) : bool